home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Objects / protos / methodobject_protos.h < prev    next >
Text File  |  1998-01-26  |  375b  |  9 lines

  1.  
  2. /* methodobject.c */
  3. static void meth_dealloc ( PyCFunctionObject *m );
  4. static PyObject *meth_getattr ( PyCFunctionObject *m , char *name );
  5. static PyObject *meth_repr ( PyCFunctionObject *m );
  6. static int meth_compare ( PyCFunctionObject *a , PyCFunctionObject *b );
  7. static long meth_hash ( PyCFunctionObject *a );
  8. static PyObject *listmethodchain ( PyMethodChain *chain );
  9.